home *** CD-ROM | disk | FTP | other *** search
/ Chip 1998 March / Chip_1998-03_cd.bin / oddech / RELAXACE / APLIKACE / UVOD / UVOD.DXR / 00056_Najezd a klik.ls < prev    next >
Encoding:
Text File  |  1998-01-12  |  767 b   |  40 lines

  1. property Znacka
  2.  
  3. on getPropertyDescriptionList
  4.   set description to [:]
  5.   addProp(description, #Znacka, [#comment: "Znacka:", #format: #string, #default: EMPTY])
  6.   return description
  7. end
  8.  
  9. on getBehaviorDescription
  10.   return "N├íjezd a klik"
  11. end
  12.  
  13. on beginSprite me
  14.   set the visible of sprite the spriteNum of me to 1
  15.   set the visible of sprite (the spriteNum of me + 1) to 0
  16. end
  17.  
  18. on endSprite me
  19. end
  20.  
  21. on mouseEnter me
  22.   puppetSound(1, "Najezd")
  23.   set the cursor of sprite the spriteNum of me to [59, 60]
  24.   set the visible of sprite (the spriteNum of me + 1) to 1
  25. end
  26.  
  27. on mouseLeave me
  28.   set the visible of sprite (the spriteNum of me + 1) to 0
  29. end
  30.  
  31. on mouseDown me
  32.   puppetSound(1, "Klik")
  33.   repeat while soundBusy(1)
  34.   end repeat
  35. end
  36.  
  37. on mouseUp me
  38.   go(Znacka)
  39. end
  40.